home *** CD-ROM | disk | FTP | other *** search
/ Die Ultimative Software-P…i Collection 1996 & 1997 / Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso / g / gnu_c / incl98.zoo / nlist.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-26  |  228 b   |  20 lines

  1. #ifndef _NLIST_H
  2.  
  3. #ifndef _COMPILER_H
  4. #include <compiler.h>
  5. #endif
  6.  
  7.  
  8. struct nlist
  9. {
  10.     char *n_name;
  11.     unsigned short n_type;
  12.     long n_value;
  13. };
  14.  
  15. __EXTERN int nlist __PROTO((char *file, struct nlist *nl));
  16.  
  17.  
  18. #define _NLIST_H
  19. #endif
  20.